* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* About SVK Section */
.svk-about-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  text-align: center;
}

.svk-about-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}

.svk-about-section p {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

/* Featured Products Section */
.svk-products-section {
  background: #fff;
  padding: 80px 0;
  text-align: center;
}

.svk-products-section h2 {
  font-size: 5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 50px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* bigger than 220px */
  gap: 30px;
  margin-bottom: 50px;
}

.product-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  border: 2px solid #e9ecef;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
  /* Make card square */
  aspect-ratio: 1 / 1; 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-image-placeholder {
  width: 100%;
  height: auto; /* height auto, aspect ratio controls square */
  flex: 1 0 auto;
  background: #dee2e6;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #adb5bd;
  position: relative;
}

.product-image-placeholder::after {
  content: "Image Placeholder";
  color: #6c757d;
  font-size: 0.9rem;
  font-weight: 500;
}

.product-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2c3e50;
  margin-top: 10px;
  text-align: center;
}

.product-image-placeholder {
  width: 100%;
  flex: 1 0 auto;
  border-radius: 8px;
  margin-bottom: 20px;
  background-size: cover;
  background-position: center;
  border: none; /* remove dashed border */
  position: relative;
}

/* Remove placeholder text (::after) */
.product-image-placeholder::after {
  content: none;
}

/* Individual product images */
/* Individual product images */
.workstation {
  background-image: url("images/workstation.jpg");
}

.executive-table {
  background-image: url("images/executive-table.jpg");
}

.office-chair {
  background-image: url("images/office-chair.jpg");
}

.storage {
  background-image: url("images/storage.jpg");
}

.conference-table {
  background-image: url("images/workstation.jpg");
}

.product-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* crops nicely without stretching */
  display: block;
  border-radius: 8px;  /* match placeholder */
}



/* Why Choose SVK Section */
.svk-usp-section {
  background: #1daaa3;
  color: rgb(255, 255, 255);
  padding: 80px 0;
  text-align: center;
}

.svk-usp-section h2 {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 50px;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.usp-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: background 0.3s ease;
}

.usp-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.check-icon {
  width: 30px;
  height: 30px;
  background: #eba0a0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.usp-item span {
  font-size: 1.6rem;
  font-weight: 500;
}

/* CTA Buttons */
.cta-button {
  background: #1daaa3;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  background: #1daaa3;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.cta-button.small {
  padding: 12px 25px;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .svk-about-section h2,
  .svk-products-section h2,
  .svk-usp-section h2 {
    font-size: 2rem;
  }

  .svk-about-section,
  .svk-products-section,
  .svk-usp-section {
    padding: 60px 0;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
  }

  .usp-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .usp-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .svk-about-section h2,
  .svk-products-section h2,
  .svk-usp-section h2 {
    font-size: 1.8rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
  }
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #007bff; /* Button color */
  color: #fff;
  text-decoration: none; /* Remove underline */
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background-color: #0056b3; /* Darker on hover */
  transform: translateY(-2px); /* Lift effect */
}

.cta-button:active {
  background-color: #004085; /* Even darker on click */
  transform: translateY(0); /* Reset lift */
}